home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2000 July / macformat-092.iso / MacFormat 92 CD / Shareware Plus / Utilities / FolderSynchronizer 1.8.9 / PlugIn / SR / 00003_sKeys.ls < prev    next >
Encoding:
Text File  |  2000-03-23  |  691 b   |  44 lines

  1. on TastoReport
  2.   set myTasto to the keyCode
  3.   case myTasto of
  4.     53:
  5.       chiudiWindow()
  6.     125:
  7.       if the optionDown then
  8.         LastV()
  9.       else
  10.         NextV()
  11.       end if
  12.     126:
  13.       if the optionDown then
  14.         FirstV()
  15.       else
  16.         PrevV()
  17.       end if
  18.     121:
  19.       NextPageV()
  20.     116:
  21.       PrevPageV()
  22.     124:
  23.       if the optionDown then
  24.         LastH()
  25.       else
  26.         NextH()
  27.       end if
  28.     123:
  29.       if the optionDown then
  30.         FirstH()
  31.       else
  32.         PrevH()
  33.       end if
  34.   end case
  35.   if (the key = "w") and the commandDown then
  36.     chiudiWindow()
  37.   else
  38.     if the commandDown then
  39.       dontPassEvent()
  40.       exit
  41.     end if
  42.   end if
  43. end
  44.